home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / blankery / blanker / source / blankers / defs.h next >
C/C++ Source or Header  |  1993-07-29  |  563b  |  32 lines

  1. /*
  2.  *    Copyright (c) 1993 Michael D. Bayne.
  3.  *    All rights reserved.
  4.  *
  5.  *    Please see the documentation accompanying the distribution for distribution and disclaimer information.
  6.  */
  7.  
  8. #define SIG_PORT        ( 1 << modPort->mp_SigBit )
  9.  
  10. #define BM_UNBLANKED    1
  11.  
  12. #define BM_DOBLANK    11
  13. #define BM_DOPREFS    12
  14. #define BM_DOQUIT    13
  15.  
  16. #define QUIT        0
  17. #define CONTINUE    1
  18.  
  19. #define STARTUP        1
  20. #define IDCMP        2
  21. #define KILL        3
  22.  
  23. struct bMessage {
  24.     struct    Message bm_Mess;
  25.     struct    Task *bm_Task;
  26.     ULONG    bm_Mod;
  27.     ULONG    bm_Dep;
  28.     ULONG    bm_Type;
  29.     UBYTE    *bm_Info;
  30.     UBYTE    *bm_Data;
  31. };
  32.